home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / benchmarks / getpid / getpid.c < prev    next >
C/C++ Source or Header  |  1989-08-31  |  2KB  |  71 lines

  1. /* 
  2.  * getpid.c --
  3.  *
  4.  *    This file is a benchmark program to measure the cost of a
  5.  *    minimal kernel call (getpid).  It should be invoked as follows:
  6.  *    
  7.  *    getpid count
  8.  *
  9.  *    Where count is the number of calls to make.  It makes that
  10.  *    many calls, then prints out the average time per call.
  11.  *
  12.  * Copyright 1989 Regents of the University of California
  13.  * Permission to use, copy, modify, and distribute this
  14.  * software and its documentation for any purpose and without
  15.  * fee is hereby granted, provided that the above copyright
  16.  * notice appear in all copies.  The University of California
  17.  * makes no representations about the suitability of this
  18.  * software for any purpose.  It is provided "as is" without
  19.  * express or implied warranty.
  20.  */
  21.  
  22. #ifndef lint
  23. static char rcsid[] = "$Header: /sprite/src/benchmarks/getpid/RCS/getpid.c,v 1.1 89/08/31 13:19:47 ouster Exp $ SPRITE (Berkeley)";
  24. #endif /* not lint */
  25.  
  26. #include <stdio.h>
  27. #include <sys/time.h>
  28. #include <sys/resource.h>
  29.  
  30. main(argc, argv)
  31.     int argc;
  32.     char **argv;
  33. {
  34.     int count, i;
  35.     struct rusage begin ,end;
  36.     struct timeval start, stop;
  37.     struct timezone tz;
  38.     int micros;
  39.     double timePer;
  40.  
  41.     if (argc != 2) {
  42.     fprintf(stderr, "Usage: getpid count\n");
  43.     exit(1);
  44.     }
  45.  
  46.     count = atoi(argv[1]);
  47.  
  48. #ifdef GETRUSAGE
  49.     getrusage(RUSAGE_SELF, &begin);
  50. #else
  51.     gettimeofday(&start, (struct timezone *) NULL);
  52. #endif
  53.  
  54.     for (i = 0; i < count; i++) {
  55.         (void) getpid();
  56.     }
  57. #ifdef GETRUSAGE
  58.     getrusage(RUSAGE_SELF, &end);
  59.     micros = (end.ru_utime.tv_sec + end.ru_stime.tv_sec
  60.         - begin.ru_utime.tv_sec - begin.ru_stime.tv_sec)*1000000
  61.         + (end.ru_utime.tv_usec - begin.ru_utime.tv_usec)
  62.         + (end.ru_stime.tv_usec - begin.ru_stime.tv_usec);
  63. #else
  64.     gettimeofday(&stop, (struct timezone *) NULL);
  65.     micros = 1000000*(stop.tv_sec - start.tv_sec)
  66.         + stop.tv_usec - start.tv_usec;
  67. #endif
  68.     timePer = micros;
  69.     printf("Time per iteration: %.2f microseconds\n", timePer/count);
  70. }
  71.